home *** CD-ROM | disk | FTP | other *** search
- { FormulaBuilder }
- { YGB Software, Inc. }
- { Copyright 1995 Clayton Collie }
- { All rights reserved }
-
- {* Delay warning dialog for the RTTI demo *}
- unit Warndlg;
- interface
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- StdCtrls, ExtCtrls, Forms, Buttons;
-
- type
- TDelayWarnForm = class(TForm)
- BitBtn1: TBitBtn;
- BitBtn2: TBitBtn;
- Memo1: TMemo;
- end;
-
- var
- DelayWarnForm: TDelayWarnForm;
-
- Function ShowDelayWarning : Word;
-
- implementation
- {$R *.DFM}
-
- Function ShowDelayWarning : word;
- var dlg : TDelayWarnForm;
- begin
- Dlg := TDelayWarnForm.Create(NIL);
- TRY
- Result := Dlg.ShowModal;
- FINALLY
- Dlg.Free;
- end;
- end;
-
- end.
-